diff options
Diffstat (limited to 'app/[lng]/partners/pq_new/page.tsx')
| -rw-r--r-- | app/[lng]/partners/pq_new/page.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app/[lng]/partners/pq_new/page.tsx b/app/[lng]/partners/pq_new/page.tsx index 69498484..24051f34 100644 --- a/app/[lng]/partners/pq_new/page.tsx +++ b/app/[lng]/partners/pq_new/page.tsx @@ -18,7 +18,7 @@ import { } from "@/components/ui/table"; import { unstable_noStore as noStore } from 'next/cache'; import { getAllPQsByVendorId, getPQStatusCounts } from "@/lib/pq/service"; - +import { InformationButton } from "@/components/information/information-button"; export const metadata: Metadata = { title: "사전 평가 (PQ) 목록", description: "요청된 사전 평가 목록을 확인하고 작성합니다.", @@ -131,7 +131,10 @@ export default async function PQListPage() { <Shell className="gap-6"> <div className="flex justify-between items-center"> <div> - <h2 className="text-2xl font-bold tracking-tight">사전 평가 (PQ) 목록</h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight">사전 평가 (PQ) 목록</h2> + <InformationButton pageCode="partners/pq_new" /> + </div> <p className="text-muted-foreground"> 요청된 사전 평가 목록을 확인하고 작성합니다. </p> |
